HTMLify
index.html
Views: 476 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>WeebList</title> <link rel="stylesheet" href="index.css"> </head> <body> <div id="header"> <h1>The <strong id="output"></strong> List</h1> <form class="search-box" method="dialog" onsubmit="searchWeeb()"> <input type="search" class="search-field" id="search" placeholder="Search for an manga..." required /> <button type="button" class="search-button" onclick="searchWeeb()"> Search <a id="search-anime"></a> </button> </form> <p class="search-hint" onclick="changeNameType()">Click enter to swap to <a id="swap-anime"></a></p> <script src="index.js"></script> </div> <div class="main"> </div> </body> </html> |